home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Freeware / DiskMaster / Rexx / DMSizeCmp.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  2002-10-27  |  441 b   |  26 lines

  1. /* $VER: DMSizeCmp.rexx 1.1 (2.10.98) by J. Tierney
  2.  
  3.   DiskMaster II Size Compare  v1.1
  4.   10/2/98  J. Tierney
  5.  
  6.   Function:  Sorts a dir by size, & then selects files which are the same size.
  7.  
  8.   Usage:  Rexx DMSizeCmp.rexx
  9.  
  10.  
  11. */
  12.  
  13. OPTIONS RESULTS
  14.  
  15. SORT S
  16.  
  17. DIRLIST VAR dlist SIZE
  18.  
  19. file1. = 0
  20.  
  21. DO i=1 TO dlist.name.0
  22.   IF file1.size = dlist.size.i THEN 'SELECT' file1.name dlist.name.i
  23.   file1.name = dlist.name.i
  24.   file1.size = dlist.size.i
  25. END
  26.